home *** CD-ROM | disk | FTP | other *** search
/ Champak 40 / Vol 40.iso / games / 360_derg.swf / scripts / frame_2 / DoAction_2.as next >
Text File  |  2007-05-10  |  196b  |  17 lines

  1. if(Key.isDown(39))
  2. {
  3.    theta += 10;
  4.    if(theta >= 360)
  5.    {
  6.       theta -= 360;
  7.    }
  8. }
  9. else if(Key.isDown(37))
  10. {
  11.    theta -= 10;
  12.    if(theta < 0)
  13.    {
  14.       theta += 360;
  15.    }
  16. }
  17.